home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / gnu / gnulib / sipp / demo / animatio / makefile.dj < prev    next >
Encoding:
Makefile  |  1994-02-17  |  389 b   |  27 lines

  1. # Makefile for the animation demo.
  2.  
  3. LIBDIR=../../libsipp
  4.  
  5. CC = gcc -m486
  6. #CC = cc
  7. #CFLAGS = -g -I$(LIBDIR)
  8. #CFLAGS = -O4 -I$(LIBDIR)
  9. CFLAGS = -O2 -I$(LIBDIR)
  10.  
  11. RM = del /q
  12.  
  13. PROGS = animation
  14.  
  15.  
  16. all:    $(PROGS)
  17.  
  18. .c.o:
  19.     $(CC) $(CFLAGS) -c $<
  20.  
  21. clean:
  22.     $(RM) -f *.o *~ $(PROGS) anim??.p?m core
  23.  
  24.  
  25. animation: animation.o
  26.     $(CC) -s -o $@ animation.o -L$(LIBDIR) -lsipp -lm
  27.